home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Programmer Disk
/
The Programmer Disk (Microforum).iso
/
xpro
/
tutor
/
pro30
/
uglyform.pas
< prev
next >
Wrap
Pascal/Delphi Source File
|
1991-02-04
|
468b
|
19 lines
program Ugly_Programming_Style;begin Write('Programming style ')
;Write ('is a matter of ');
Writeln('personal choice');Write('Each person ');
Write('can choose ');Writeln
('his own style');Write('He can be ');Write
('very clear, or ');
Writeln('extremely messy');end.
{ Result of execution
Programming style is a matter of personal choice
Each person can choose his own style
He can be very clear, or extremely messy
}